home *** CD-ROM | disk | FTP | other *** search
/ Kompuutteri K-CD 2002 #1 / K-CD_2002-01.iso / Delphi / INSTALL / program files / Borland / Delphi6 / Demos / Doc / Filmanex / filmanex.dpr < prev    next >
Encoding:
Text File  |  2001-05-22  |  419 b   |  19 lines

  1. program FilManEx;
  2.  
  3. uses
  4.   Forms,
  5.   FMXWin in 'FMXWin.pas' {FMForm},
  6.   FmxUtils in 'Fmxutils.pas',
  7.   FAttrDlg in 'FAttrDlg.pas' {FileAttrForm},
  8.   FChngDlg in 'FChngDlg.pas' {ChangeDlg};
  9.  
  10. {$R *.RES}
  11.  
  12. begin
  13.   Application.Initialize;
  14.   Application.CreateForm(TFMForm, FMForm);
  15.   Application.CreateForm(TFileAttrForm, FileAttrForm);
  16.   Application.CreateForm(TChangeDlg, ChangeDlg);
  17.   Application.Run;
  18. end.
  19.